Skip to content

add test to reproduce #137687 and fix it by converting #[crate_name] to a new-style attribute parser #137729

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

jdonszelmann
Copy link
Contributor

r? @fmease

Closes #137687

@rustbot rustbot added A-attributes Area: Attributes (`#[…]`, `#![…]`) S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels Feb 27, 2025
@rust-log-analyzer

This comment has been minimized.

@rust-log-analyzer

This comment has been minimized.

@jdonszelmann jdonszelmann force-pushed the fix-137687 branch 2 times, most recently from 4e90cee to 21838d5 Compare February 27, 2025 16:51
Comment on lines 179 to 180
name: Symbol,
name_span: Span,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This could theoretically use Spanned but it doesn't necessarily lead to more readable code (and I don't remember if it's compatible with translatable diagnostics).

Suggested change
name: Symbol,
name_span: Span,
name: Symbol,
name_span: Span,

pub(crate) struct CratenameParser;

impl SingleAttributeParser for CratenameParser {
const PATH: &'static [Symbol] = &[sym::crate_name];
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FYI: You generally no longer need to explicitly state 'static in the ty of assoc consts.


fn on_duplicate(cx: &AcceptContext<'_>, first_span: Span) {
// FIXME(jdonszelmann): better duplicate reporting (WIP)
cx.emit_err(UnusedMultiple {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Duplicates are warnings on master, right? So this is a breaking change?

@jdonszelmann
Copy link
Contributor Author

@fmease and I decided to delay this PR for a bit until more diagnostic infra for attrs lands (hopefully next week) to make the duplicate error a warning to be consistent with current master.

@fmease fmease added S-blocked Status: Blocked on something else such as an RFC or other implementation work. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Mar 6, 2025
@fmease
Copy link
Member

fmease commented Mar 6, 2025

r=fmease,bjorn3 once that PR lands and you can downgrade the error to a lint warning again.

@bors delegate+

@bors
Copy link
Collaborator

bors commented Mar 6, 2025

✌️ @jdonszelmann, you can now approve this pull request!

If @fmease told you to "r=me" after making some further change, please make that change, then do @bors r=@fmease

@bors
Copy link
Collaborator

bors commented Mar 13, 2025

☔ The latest upstream changes (presumably #138416) made this pull request unmergeable. Please resolve the merge conflicts.

@wesleywiser
Copy link
Member

Hi @jdonszelmann and @fmease, #137687 has reached beta so it would be great if we could resolve that via a beta-backport of this PR. Do you think it's possible to resolve the review feedback and merge this PR in the next week or so?

I can probably pitch in to help if necessary 🙂

@jdonszelmann
Copy link
Contributor Author

Hi there. We wanted to delay this until attribute diagnostics. Something that should not be a lot of work but I have not worked as much on recently as I maybe should. I can't to this tomorrow, but likely next week. The pr has been reviewed but there was a bit of an issue around incremental, which I now know how to solve but just haven't yet. Is that a reasonable timeframe? I am pretty busy with organising rust week atm, but knowing the solution I guess the only important thing is that it gets quick reviews? Let me know how that sounds

@wesleywiser
Copy link
Member

Just to clarify, will this PR then depend on the attribute diagnostics work? (Is that #138164?)

Generally, for backports, we try to keep the backport as small as possible so if this PR can be made to work independently of that PR (possibly even with a degraded diagnostics experience), that would be highly preferred.

@jdonszelmann
Copy link
Contributor Author

No. We decided to delay this because it's relatively low prio and any nice and permanent solution for this depends on that. I'll make a temp fix that at least doesn't ice separately then, that sounds better for now. I don't mind doing it, I know the problem now and then I also know how to fix it permanently later. You'll hear from me

@theemathas
Copy link
Contributor

theemathas commented May 1, 2025

Note that #137687 actually has two separate problems/subissues:

  1. A problem (lower priority) involving the #[crate_name] attribute.
  2. A problem (higher priority, found in a crater run) involving user-defined macro_rules and derive macros.

This PR only appears to address the first problem. The second problem would probably need to have a separate fix.

@jdonszelmann
Copy link
Contributor Author

jdonszelmann commented May 2, 2025

ok this is weird, I've copied just the tests over to master to fix it in a temporary way, but can no longer reporoduce the issue. Something else must have solved it in the meantime. Let me see what.

@jieyouxu
Copy link
Member

jieyouxu commented May 3, 2025

(I know I've said this in the other PR too, but just in case)

Just a heads up: I split #137687 into two issues:

@jdonszelmann
Copy link
Contributor Author

@fmease finally got around to this one. The 2nd commit introduces lints for early-parsed attributes which was something that was unsupported earlier simply because no attribute needed it until now. The warning/error is unfortunately emitted twice now which is hard to fix in this PR. We simply call a very long chain of functions twice, and expect the first time to emit errors and the 2nd not. It's hard to distinguish these cases, and in some cases when we try to get metadata from rustc we only actually trigger the chain once so it's hard to even define in which call to emit errors. I left a todo for it.

@jdonszelmann
Copy link
Contributor Author

jdonszelmann commented Aug 11, 2025

should merge after #145243 which is a PR that does some generic diagnostics work that impacts this PR a lot.

Copy link
Member

@fmease fmease left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have some nits and questions but generally 👍, thanks!

pub fn encode_cross_crate(&self) -> EncodeCrossCrate {
use AttributeKind::*;
use EncodeCrossCrate::*;

match self {
// tidy-alphabetical-start
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why remove tidy-alphabetical-* and the "Needed for rustdoc" comments?

@@ -1125,6 +1127,28 @@ fn run_required_analyses(tcx: TyCtxt<'_>) {
}
}

pub(crate) fn parse_crate_name(
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you maybe move it below the fn get_crate_name? It feels a bit misplaced between fn run_required_analyses and fn analysis.

@@ -468,5 +470,15 @@ pub fn decorate_builtin_lint(
BuiltinLintDiag::UnexpectedBuiltinCfg { cfg, cfg_name, controlled_by } => {
lints::UnexpectedBuiltinCfg { cfg, cfg_name, controlled_by }.decorate_lint(diag)
}
BuiltinLintDiag::AttributeLint(attr) => {
emit_attribute_lint_kind(&attr, DiagEmitter(diag));
Copy link
Member

@fmease fmease Aug 11, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The word emit here is misleading I feel like, this function is effectively not emitting, it's only decorating. Welp, to be fair, fns like emit_node_span_lint also don't emit necessarily (depending on fn lint_level's decision).

Er, but I see that it's like that because emit_attribute_lint_kind / SimpleLintEmitter is there to abstract over / generalize emit_node_span_lint and decorate_lint. Not sure what else to call all of these "LitEmitter"-related items tho atm 🤷

--> $DIR/malformed-attrs.rs:71:1
|
LL | #[crate_name]
| ^^^^^^^^^^^^^ help: must be of the form: `#[crate_name = "name"]`
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(will be must be of the form: `#![crate_name = "name"]` (extra !) after #145238 (future conflict))

@@ -0,0 +1 @@
print_crate_name_request_malformed_crate_name
Copy link
Member

@fmease fmease Aug 11, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, interesting ^^. This'll lead to some interesting output in the terminal where stdout & stderr are typically merged.

Ideally we shouldn't emit this (wrong) crate name … but it's probably unavoidable rn since the new attr parsing APIs don't return a Result<_, _>?

};
let mut parsed = p.parse_attribute_list(
attrs,
target_span,
target_node_id,
OmitDoc::Skip,
std::convert::identity,
|_lint| {
panic!("can't emit lints here for now (nothing uses this atm)");
|AttributeLint { id, span, kind }| {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(Since I lack a bigger picture of the new attr parsing APIs) Is it desirable that parse_limited{,_should_emit} default to lint buffering by default? Shouldn't the caller decide that (via a callback)?

For example, what happens if someone calls one of these functions in a later compiler stage when all buffered lints "have been emitted already"? Can that even happen or are buffered lints only emitted when the session is destroyed (I don't know much about this logic of buffer_lint)?

@@ -1417,15 +1418,24 @@ pub struct TyCtxt<'tcx> {
gcx: &'tcx GlobalCtxt<'tcx>,
}

pub struct Simple<'tcx>(TyCtxt<'tcx>, &'static Lint, HirId, MultiSpan);
Copy link
Member

@fmease fmease Aug 11, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"Simple" and "SimpleLintEmitter" are quite nondescript and confusing to be totally honest. Could you rename this maybe? Not entirely sure what to call of these "things". Maybe SimpleLintEmission?? hmm >.<

(cc the naming problem of the emit_* & decorate_* abstraction I mentioned in an earlier review comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-attributes Area: Attributes (`#[…]`, `#![…]`) S-blocked Status: Blocked on something else such as an RFC or other implementation work. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

ICE: expr in place where literal is expected (builtin attr parsing)
9 participants